{ "cells": [ { "cell_type": "markdown", "id": "2401bac7-3b84-455d-b737-235a9605c258", "metadata": {}, "source": [ "# Movie Recomendation System" ] }, { "cell_type": "markdown", "id": "24fafe26-c8e7-4400-bad4-7b7e4c1bdfa8", "metadata": {}, "source": [ "### In this project we will be building a model which will recomend movies according to many parameters. We will be using Cosine Similarity and TF-IDF to complete the target" ] }, { "cell_type": "code", "execution_count": 173, "id": "1c622331-af9f-4a6b-8bef-c7e53bbe902c", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "%matplotlib inline\n", "import seaborn as sns" ] }, { "cell_type": "code", "execution_count": 174, "id": "7c74247a-3e69-46d6-8e5e-5dd5a748ae70", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | index | \n", "budget | \n", "genres | \n", "homepage | \n", "id | \n", "keywords | \n", "original_language | \n", "original_title | \n", "overview | \n", "popularity | \n", "... | \n", "runtime | \n", "spoken_languages | \n", "status | \n", "tagline | \n", "title | \n", "vote_average | \n", "vote_count | \n", "cast | \n", "crew | \n", "director | \n", "
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", "0 | \n", "237000000 | \n", "Action Adventure Fantasy Science Fiction | \n", "http://www.avatarmovie.com/ | \n", "19995 | \n", "culture clash future space war space colony so... | \n", "en | \n", "Avatar | \n", "In the 22nd century, a paraplegic Marine is di... | \n", "150.437577 | \n", "... | \n", "162.0 | \n", "[{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso... | \n", "Released | \n", "Enter the World of Pandora. | \n", "Avatar | \n", "7.2 | \n", "11800 | \n", "Sam Worthington Zoe Saldana Sigourney Weaver S... | \n", "[{'name': 'Stephen E. Rivkin', 'gender': 0, 'd... | \n", "James Cameron | \n", "
1 | \n", "1 | \n", "300000000 | \n", "Adventure Fantasy Action | \n", "http://disney.go.com/disneypictures/pirates/ | \n", "285 | \n", "ocean drug abuse exotic island east india trad... | \n", "en | \n", "Pirates of the Caribbean: At World's End | \n", "Captain Barbossa, long believed to be dead, ha... | \n", "139.082615 | \n", "... | \n", "169.0 | \n", "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", "Released | \n", "At the end of the world, the adventure begins. | \n", "Pirates of the Caribbean: At World's End | \n", "6.9 | \n", "4500 | \n", "Johnny Depp Orlando Bloom Keira Knightley Stel... | \n", "[{'name': 'Dariusz Wolski', 'gender': 2, 'depa... | \n", "Gore Verbinski | \n", "
2 | \n", "2 | \n", "245000000 | \n", "Action Adventure Crime | \n", "http://www.sonypictures.com/movies/spectre/ | \n", "206647 | \n", "spy based on novel secret agent sequel mi6 | \n", "en | \n", "Spectre | \n", "A cryptic message from Bond’s past sends him o... | \n", "107.376788 | \n", "... | \n", "148.0 | \n", "[{\"iso_639_1\": \"fr\", \"name\": \"Fran\\u00e7ais\"},... | \n", "Released | \n", "A Plan No One Escapes | \n", "Spectre | \n", "6.3 | \n", "4466 | \n", "Daniel Craig Christoph Waltz L\\u00e9a Seydoux ... | \n", "[{'name': 'Thomas Newman', 'gender': 2, 'depar... | \n", "Sam Mendes | \n", "
3 | \n", "3 | \n", "250000000 | \n", "Action Crime Drama Thriller | \n", "http://www.thedarkknightrises.com/ | \n", "49026 | \n", "dc comics crime fighter terrorist secret ident... | \n", "en | \n", "The Dark Knight Rises | \n", "Following the death of District Attorney Harve... | \n", "112.312950 | \n", "... | \n", "165.0 | \n", "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", "Released | \n", "The Legend Ends | \n", "The Dark Knight Rises | \n", "7.6 | \n", "9106 | \n", "Christian Bale Michael Caine Gary Oldman Anne ... | \n", "[{'name': 'Hans Zimmer', 'gender': 2, 'departm... | \n", "Christopher Nolan | \n", "
4 | \n", "4 | \n", "260000000 | \n", "Action Adventure Science Fiction | \n", "http://movies.disney.com/john-carter | \n", "49529 | \n", "based on novel mars medallion space travel pri... | \n", "en | \n", "John Carter | \n", "John Carter is a war-weary, former military ca... | \n", "43.926995 | \n", "... | \n", "132.0 | \n", "[{\"iso_639_1\": \"en\", \"name\": \"English\"}] | \n", "Released | \n", "Lost in our world, found in another. | \n", "John Carter | \n", "6.1 | \n", "2124 | \n", "Taylor Kitsch Lynn Collins Samantha Morton Wil... | \n", "[{'name': 'Andrew Stanton', 'gender': 2, 'depa... | \n", "Andrew Stanton | \n", "
5 rows × 24 columns
\n", "\n", " | index | \n", "budget | \n", "id | \n", "popularity | \n", "revenue | \n", "runtime | \n", "vote_average | \n", "vote_count | \n", "
---|---|---|---|---|---|---|---|---|
count | \n", "4803.000000 | \n", "4.803000e+03 | \n", "4803.000000 | \n", "4803.000000 | \n", "4.803000e+03 | \n", "4801.000000 | \n", "4803.000000 | \n", "4803.000000 | \n", "
mean | \n", "2401.000000 | \n", "2.904504e+07 | \n", "57165.484281 | \n", "21.492301 | \n", "8.226064e+07 | \n", "106.875859 | \n", "6.092172 | \n", "690.217989 | \n", "
std | \n", "1386.651002 | \n", "4.072239e+07 | \n", "88694.614033 | \n", "31.816650 | \n", "1.628571e+08 | \n", "22.611935 | \n", "1.194612 | \n", "1234.585891 | \n", "
min | \n", "0.000000 | \n", "0.000000e+00 | \n", "5.000000 | \n", "0.000000 | \n", "0.000000e+00 | \n", "0.000000 | \n", "0.000000 | \n", "0.000000 | \n", "
25% | \n", "1200.500000 | \n", "7.900000e+05 | \n", "9014.500000 | \n", "4.668070 | \n", "0.000000e+00 | \n", "94.000000 | \n", "5.600000 | \n", "54.000000 | \n", "
50% | \n", "2401.000000 | \n", "1.500000e+07 | \n", "14629.000000 | \n", "12.921594 | \n", "1.917000e+07 | \n", "103.000000 | \n", "6.200000 | \n", "235.000000 | \n", "
75% | \n", "3601.500000 | \n", "4.000000e+07 | \n", "58610.500000 | \n", "28.313505 | \n", "9.291719e+07 | \n", "118.000000 | \n", "6.800000 | \n", "737.000000 | \n", "
max | \n", "4802.000000 | \n", "3.800000e+08 | \n", "459488.000000 | \n", "875.581305 | \n", "2.787965e+09 | \n", "338.000000 | \n", "10.000000 | \n", "13752.000000 | \n", "
\n", " | genres | \n", "keywords | \n", "tagline | \n", "cast | \n", "director | \n", "original_language | \n", "overview | \n", "tagline | \n", "
---|---|---|---|---|---|---|---|---|
0 | \n", "Action Adventure Fantasy Science Fiction | \n", "culture clash future space war space colony so... | \n", "Enter the World of Pandora. | \n", "Sam Worthington Zoe Saldana Sigourney Weaver S... | \n", "James Cameron | \n", "en | \n", "In the 22nd century, a paraplegic Marine is di... | \n", "Enter the World of Pandora. | \n", "
1 | \n", "Adventure Fantasy Action | \n", "ocean drug abuse exotic island east india trad... | \n", "At the end of the world, the adventure begins. | \n", "Johnny Depp Orlando Bloom Keira Knightley Stel... | \n", "Gore Verbinski | \n", "en | \n", "Captain Barbossa, long believed to be dead, ha... | \n", "At the end of the world, the adventure begins. | \n", "
2 | \n", "Action Adventure Crime | \n", "spy based on novel secret agent sequel mi6 | \n", "A Plan No One Escapes | \n", "Daniel Craig Christoph Waltz L\\u00e9a Seydoux ... | \n", "Sam Mendes | \n", "en | \n", "A cryptic message from Bond’s past sends him o... | \n", "A Plan No One Escapes | \n", "
3 | \n", "Action Crime Drama Thriller | \n", "dc comics crime fighter terrorist secret ident... | \n", "The Legend Ends | \n", "Christian Bale Michael Caine Gary Oldman Anne ... | \n", "Christopher Nolan | \n", "en | \n", "Following the death of District Attorney Harve... | \n", "The Legend Ends | \n", "
4 | \n", "Action Adventure Science Fiction | \n", "based on novel mars medallion space travel pri... | \n", "Lost in our world, found in another. | \n", "Taylor Kitsch Lynn Collins Samantha Morton Wil... | \n", "Andrew Stanton | \n", "en | \n", "John Carter is a war-weary, former military ca... | \n", "Lost in our world, found in another. | \n", "